Character Height
Gets or sets the character height
public float Height {get;Set} |
Return value
float | Height of the character |
Example
Copy
TextShape text = new TextShape();
Character character = new Character();
character.CharacterUnicode = 'A';
character.Height = 5;
character.FontName = "Arial";
character.FontStyle = FontStyle.Regular;
text.Characters.Add(character);